home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 62579 / 62579.xpi / content / ff-overlay.js < prev    next >
Text File  |  2010-01-23  |  476b  |  12 lines

  1. pinboard.onFirefoxLoad = function(event) {
  2.   document.getElementById("contentAreaContextMenu")
  3.     .addEventListener("popupshowing", function (e){ pinboard.showFirefoxContextMenu(e); }, false);
  4. };
  5.  
  6. pinboard.showFirefoxContextMenu = function(event) {
  7.   // show or hide the menuitem based on what the context menu is on
  8.   document.getElementById("context-pinboard").hidden = !gContextMenu.onLink;
  9. };
  10.  
  11. window.addEventListener("load", anonymouse.onFirefoxLoad, false);
  12.